Removes the specified character from a string.
Syntax
string = Remove Char (string,number)
Description
This command removes the character at position number. string newString=Remove Char("Hello",1) The value of newString is "ello" because the first character has been removed.
This command removes the character at position number.
string newString=Remove Char("Hello",1)
The value of newString is "ello" because the first character has been removed.